MultiplyNumberBy
Type
statement
Summary
Multiplies Target by Value.
Syntax
multiply <Target> by <Value>
Description
Multiplies the number Target by Value.
note
It is a syntax error if Target does not evaluate to a variable.
Parameters
Name | Type | Description |
---|---|---|
Target | An expression that evaluates to a numeric variable. | |
Value | An expression that evaluates to a number. |
Examples
variable tVar as Number
put 2 into tVar
multiply tVar by 2 -- tVar contains 4